home *** CD-ROM | disk | FTP | other *** search
/ The Arsenal Files 3 / The Arsenal Files 3.iso / os2 / os2pcl3.exe / SETUP.CMD < prev   
OS/2 REXX Batch file  |  1993-10-19  |  932b  |  32 lines

  1. @echo off
  2. echo SETUP is building your device driver files.....please wait......
  3. if not exist PCL3D.ea goto err1
  4. if not exist PCL3H.ea goto err1
  5. if not exist PCL3D.nea goto err1
  6. if not exist PCL3H.nea goto err1
  7. ren PCL3d.nea ibmPCL3.drv
  8. if not exist PCL3h.nea goto err1
  9. ren PCL3h.nea ibmPCL3.hlp
  10. echo.
  11. echo.
  12. echo When SETUP completes, follow the installation instructions in Part III
  13. echo of README.1ST, or you will experience printing problems!
  14. echo.
  15. echo.
  16. eautil ibmPCL3.drv PCL3d.ea /j
  17. if errorlevel 4 goto err2
  18. if errorlevel 1 goto err1
  19. eautil ibmPCL3.hlp PCL3h.ea /j
  20. if errorlevel 4 goto err2
  21. if errorlevel 1 goto err1
  22. echo.
  23. echo SETUP has completed successfully.  You may go on to Part III of the
  24. echo installation instructions.
  25. goto getout
  26. :err1
  27. echo Error! Setup has failed to complete. A file is missing.
  28. goto getout
  29. :err2
  30. echo Error! Setup has failed to complete. An error occurred.
  31. :getout
  32.